home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / VBZ01.ZIP / MSGMUSIC.BAS < prev    next >
BASIC Source File  |  1993-02-26  |  382b  |  11 lines

  1. DefInt A-Z
  2.  
  3. Declare Sub MusicBeep Lib "msgmusic.dll" (ByVal wType)
  4. Declare Function MusicBox Lib "msgmusic.dll" (ByVal hWnd, ByVal Text$, ByVal Caption$, ByVal wType)
  5.  
  6. Const MB_ICONSTOP = 16          ' Critical message
  7. Const MB_ICONQUESTION = 32      ' Warning query
  8. Const MB_ICONEXCLAMATION = 48   ' Warning message
  9. Const MB_ICONINFORMATION = 64   ' Information message
  10.  
  11.